rank | frequency | n-gram |
---|---|---|
1 | 22932 | -n |
2 | 14041 | -e |
3 | 9166 | -t |
4 | 8846 | -r |
5 | 7121 | -s |
rank | frequency | n-gram |
---|---|---|
1 | 17926 | -en |
2 | 7411 | -er |
3 | 3186 | -ng |
4 | 3142 | -te |
5 | 2018 | -es |
rank | frequency | n-gram |
---|---|---|
1 | 3956 | -ten |
2 | 2730 | -gen |
3 | 2605 | -ung |
4 | 2110 | -hen |
5 | 1431 | -ter |
rank | frequency | n-gram |
---|---|---|
1 | 1754 | -chen |
2 | 1272 | -ngen |
3 | 786 | -nden |
4 | 682 | -cher |
5 | 624 | -sche |
rank | frequency | n-gram |
---|---|---|
1 | 937 | -ungen |
2 | 806 | -schen |
3 | 523 | -ische |
4 | 505 | -enden |
5 | 437 | -ichen |
The tables show the most frequent letter-N-grams at the ending of words for N=1…5. Everything runs in parallel to 2.2.5 Most frequent word beginnings. The aim is suffix detection instead of affix detection.
For N=3:
SELECT @pos:=(@pos+1), xx.* from (SELECT @pos:=0) r, (select count(*) as cnt ,concat("-", right(word,3)) FROM words WHERE w_id>100 group by right(word,3) order by cnt desc) xx limit 5;
2.2.5 Most frequent word beginnings